Completed
Push — master ( 7403a2...9afade )
by Taavo-Taur
02:16
created

feathers.core.test.js ➔ ???   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
c 1
b 0
f 0
nc 1
nop 1
dl 0
loc 5
rs 9.4285
1
import test from 'ava'
2
import {addVueWithPlugin, vueCleanup} from './helpers/before/vue-hookup'
3
4
test.afterEach(vueCleanup)
5
6
test('Throws error if no feathers client set', t => {
7
	t.throws(() => {
8
		addVueWithPlugin(t)
9
	}, 'No feathers instance set in options')
10
})
11